dict_keys to list

37

newlist = list()
for i in newdict.keys():
    newlist.append(i)
list(newdict.keys())

Comments

Submit
0 Comments